home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Financial / Stopwatch2.3 / Source / Invoice.h < prev    next >
Text File  |  1995-06-12  |  599b  |  27 lines

  1. /*
  2.  * For legal stuff see the file COPYRIGHT
  3.  */
  4. #include <stdio.h>
  5. #import <objc/Object.h>
  6. #import "ClientInfo.h"
  7. #import "Session.h"
  8. #import "Expense.h"
  9.  
  10. @interface Invoice : Object
  11. {
  12.   int        number;        /* current invoice number */
  13.   const char    *date;        /* current invoice date */
  14.   ClientInfo    *info;        /* the current one being examined */
  15.   Session    *session;    /* the current one being examined */
  16.   Expense    *expense;    /* the current one being examined */
  17.  
  18.   char        *templateDir;
  19. }
  20.  
  21. - initTemplateDir:(const char *)dir;
  22. - (BOOL)editTemplate:(const char *)name;
  23.  
  24. - (void)generate:(List *)clientList;
  25.  
  26. @end
  27.